home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / wc3x / camcrc20.zip / SCANFILE.BAT < prev    next >
DOS Batch File  |  1992-10-29  |  833b  |  24 lines

  1. echo off
  2. echo Delete the SCANFILE.BAD file (Just in case it might exist)
  3. IF EXIST SCANFILE.BAD DEL SCANFILE.BAD
  4.  
  5. echo Now let's do the REAL WORK
  6. CAMS-CRC UPLOAD /C:C:\CAMS-CRC /F:%1 /D /R:50 /SCAN
  7.  
  8. IF EXIST WCFILE.LOG DEL WCFILE.LOG
  9.  
  10. echo Display the DUPS.LOG file so the user can see what percentage of dups
  11. echo he has uploaded.  It will also allow him to judge if perhaps his file
  12. echo is not a TRUE duplicate and can notify you via a message.
  13. OUTCOMM.EXE DUPS.LOG
  14.  
  15. echo Copy the DUPS.LOG to a permanent file
  16. echo This is NOT necessary, but it keeps a RUNNING log of everything.
  17. echo There are several ways to do this, this is just one of them that I use.
  18. echo If you have any questions about this, please give us a call.
  19. copy ALL-DUPS.LOG+DUPS.LOG ALL-DUPS.LOG
  20.  
  21. echo Delete the DUPS.LOG file
  22. del DUPS.LOG
  23.  
  24.